-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path2.1 (c+d x)^m (a+b (F^(g (e+f x)))^n)^p.nb
More file actions
6210 lines (6067 loc) · 305 KB
/
2.1 (c+d x)^m (a+b (F^(g (e+f x)))^n)^p.nb
File metadata and controls
6210 lines (6067 loc) · 305 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(* Content-type: application/mathematica *)
(*** Wolfram Notebook File ***)
(* http://www.wolfram.com/nb *)
(* CreatedBy='Mathematica 7.0' *)
(*CacheID: 234*)
(* Internal cache information:
NotebookFileLineBreakTest
NotebookFileLineBreakTest
NotebookDataPosition[ 145, 7]
NotebookDataLength[ 305979, 6201]
NotebookOptionsPosition[ 297974, 5992]
NotebookOutlinePosition[ 299732, 6046]
CellTagsIndexPosition[ 299689, 6043]
WindowFrame->Normal*)
(* Beginning of Notebook Content *)
Notebook[{
Cell[BoxData[
StyleBox[
RowBox[{Cell[TextData[StyleBox["Rules for integrands of the form",
FontFamily->"Arial",
FontSize->16]], "None"],
SuperscriptBox[
RowBox[{"(",
RowBox[{"c", "+",
RowBox[{"d", " ", "x"}]}], ")"}], "m"], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ",
SuperscriptBox[
RowBox[{"(",
SuperscriptBox["F",
RowBox[{"g",
RowBox[{"(",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], ")"}]}]], ")"}], "n"]}]}], ")"}],
"p"]}],
FontSize->16]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{
3.477935275784027*^9, {3.477935350060832*^9, 3.477935352384173*^9}, {
3.477935393803731*^9, 3.477935400102789*^9}, {3.477935515378547*^9,
3.47793552034569*^9}, 3.478120029940968*^9, {3.479318860690858*^9,
3.47931886615872*^9}, {3.4794185033278093`*^9, 3.479418503918659*^9},
3.4795122294117584`*^9, {3.479615913307893*^9, 3.4796159352794867`*^9},
3.4796160386581373`*^9, 3.4796867204045024`*^9, {3.4928025699585147`*^9,
3.492802570130115*^9}, 3.492822274480175*^9, 3.492825822242408*^9, {
3.4940970615585365`*^9, 3.494097062168537*^9}, {3.496441349250718*^9,
3.496441349830719*^9}, 3.4964414848609076`*^9, 3.496521708137803*^9, {
3.4965218981240697`*^9, 3.49652189838407*^9}, 3.4965229070755*^9,
3.519247079685614*^9, {3.5193208582062006`*^9, 3.5193208612170057`*^9},
3.5193325694253187`*^9, {3.5193415004828687`*^9, 3.5193415113404875`*^9}, {
3.5193513965602303`*^9, 3.519351397420232*^9}, {3.5194037839416766`*^9,
3.5194037847117205`*^9}, {3.5233155055329347`*^9, 3.523315506402936*^9}, {
3.523318726949605*^9, 3.5233187276796064`*^9}, {3.523920400879534*^9,
3.5239204094439487`*^9}, 3.52392096260852*^9, 3.523921038171853*^9,
3.5340477459008017`*^9, 3.5340515540554085`*^9, {3.536542511100503*^9,
3.53654251626051*^9}, {3.536775961244521*^9, 3.5367759616145215`*^9}, {
3.544373142375139*^9, 3.5443731599851637`*^9}, {3.5721095751430073`*^9,
3.5721095751430073`*^9}, {3.57578648209792*^9, 3.575786503859958*^9},
3.575786540270422*^9, {3.5757866379421935`*^9, 3.5757866609522343`*^9},
3.5758478960540276`*^9, 3.6735458028230343`*^9, {3.6735666862897754`*^9,
3.673566701369638*^9}, {3.6738103578923755`*^9, 3.673810361661591*^9},
3.674579202779709*^9, 3.6745803236138167`*^9, 3.6745819151528473`*^9,
3.674582629346697*^9},
TextAlignment->Center,
FontSize->12,
FontWeight->"Bold"],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{Cell[TextData[StyleBox["1.",
FontFamily->"Arial"]], "None"], " ",
RowBox[{"\[Integral]",
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"c", "+",
RowBox[{"d", " ", "x"}]}], ")"}], "m"], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"b", " ",
SuperscriptBox["F",
RowBox[{"g", " ",
RowBox[{"(",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], ")"}]}]]}], ")"}], "n"],
RowBox[{"\[DifferentialD]", "x"}]}]}]}]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{
3.477935275784027*^9, {3.477935350060832*^9, 3.477935352384173*^9}, {
3.477935393803731*^9, 3.477935400102789*^9}, {3.477935515378547*^9,
3.47793552034569*^9}, 3.478120029940968*^9, {3.479318860690858*^9,
3.47931886615872*^9}, {3.4794185033278093`*^9, 3.479418503918659*^9},
3.4795122294117584`*^9, {3.479615913307893*^9, 3.4796159352794867`*^9},
3.4796160386581373`*^9, 3.4796867204045024`*^9, {3.4928025699585147`*^9,
3.492802570130115*^9}, 3.492822274480175*^9, 3.492825822242408*^9, {
3.4940970615585365`*^9, 3.494097062168537*^9}, {3.496441349250718*^9,
3.496441349830719*^9}, 3.4964414848609076`*^9, 3.496521708137803*^9, {
3.4965218981240697`*^9, 3.49652189838407*^9}, 3.4965229070755*^9,
3.519247079685614*^9, {3.5193208582062006`*^9, 3.5193208612170057`*^9},
3.5193325694253187`*^9, {3.5193415004828687`*^9, 3.5193415113404875`*^9}, {
3.5193513965602303`*^9, 3.519351397420232*^9}, {3.5194037839416766`*^9,
3.5194037847117205`*^9}, 3.52105258275843*^9, 3.5210531741726685`*^9, {
3.521057461672199*^9, 3.5210574760242243`*^9}, {3.521059881564049*^9,
3.521059886088057*^9}, {3.5213902158895197`*^9, 3.521390217543123*^9}, {
3.521390827878595*^9, 3.521390829376197*^9}, {3.5214688792561245`*^9,
3.521468879443325*^9}, {3.523320201951167*^9, 3.523320202247567*^9}, {
3.5288596764894824`*^9, 3.5288596768094826`*^9}, {3.529196266260353*^9,
3.5291962665099535`*^9}, {3.5291997050223927`*^9,
3.5291997052563934`*^9}, {3.529201346457276*^9, 3.529201347252877*^9}, {
3.529285041073242*^9, 3.5292850412632427`*^9}, {3.529285215443486*^9,
3.529285215443486*^9}, {3.5295115356999426`*^9, 3.5295115433443794`*^9}, {
3.529521412127842*^9, 3.529521414647986*^9}, {3.529529429975619*^9,
3.529529432955224*^9}, 3.5340074894011116`*^9, 3.5415537711400824`*^9, {
3.5415538454742126`*^9, 3.54155384951462*^9}, {3.5417297197063265`*^9,
3.5417297252443366`*^9}, {3.546297494083555*^9, 3.5462974982435613`*^9}, {
3.5462989134855423`*^9, 3.5462989153655453`*^9}, 3.548544146508506*^9,
3.5488738855784535`*^9, 3.548877085095433*^9, {3.548885157919084*^9,
3.5488851581390843`*^9}, {3.5501050720442505`*^9, 3.550105091724278*^9},
3.552842303236889*^9, {3.5528426826774197`*^9, 3.552842683117421*^9},
3.552842964957815*^9, 3.5528435586686463`*^9, {3.5528438442590466`*^9,
3.5528438442590466`*^9}, {3.5528470750635695`*^9,
3.5528470992336035`*^9}, {3.552925992292306*^9, 3.5529260013247223`*^9},
3.553222405588056*^9, 3.5795486748848715`*^9, {3.579548905405194*^9,
3.579548907775197*^9}, 3.5795492772757144`*^9, 3.579549350275817*^9,
3.5795585715262985`*^9, 3.5795588167566414`*^9, {3.6738105630461097`*^9,
3.67381058140716*^9}, {3.67458301822494*^9, 3.674583037320032*^9}, {
3.6745840615256133`*^9, 3.6745840707781425`*^9}, 3.6745849272331285`*^9, {
3.67458651161775*^9, 3.674586511830763*^9}},
FontSize->12,
FontWeight->"Bold"],
Cell[TextData[{
"If the control variable ",
Cell[BoxData["$UseGamma"], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{{3.4796579723816*^9, 3.4796580261689425`*^9},
3.479661191290163*^9, {3.479686720164157*^9, 3.479686720204214*^9}, {
3.479686831554328*^9, 3.479686834819022*^9}, {3.4940970712485504`*^9,
3.4940971130286083`*^9}, 3.4940971455886545`*^9, 3.4953221152495327`*^9,
3.495322146199576*^9, {3.495322261579737*^9, 3.4953222704097495`*^9},
3.4953325041434045`*^9, 3.4953325401034546`*^9, {3.4953327138936977`*^9,
3.4953327232437115`*^9}, {3.4953341614457245`*^9, 3.4953341867757597`*^9},
3.5501063615760555`*^9, {3.5501064648262005`*^9, 3.550106490466236*^9}, {
3.550106525066285*^9, 3.550106540276306*^9}, {3.5501065790863605`*^9,
3.5501066156964116`*^9}, {3.5528423117869005`*^9, 3.552842314026904*^9}, {
3.5528426917374325`*^9, 3.5528426937974358`*^9}, {3.5528429682378197`*^9,
3.5528429694078217`*^9}, {3.5528433415383425`*^9,
3.5528433442283463`*^9}, {3.5528435601586485`*^9,
3.5528435612786503`*^9}, {3.552844695100238*^9, 3.552844701190246*^9}, {
3.5528471263836412`*^9, 3.552847134093652*^9}, {3.5795487900050325`*^9,
3.579548792195035*^9}, {3.5795492795057173`*^9, 3.579549280715719*^9}, {
3.5795493517058187`*^9, 3.5795493524758196`*^9}, {3.579549671386266*^9,
3.579549675026271*^9}, 3.5795497284863462`*^9, {3.5795585728663*^9,
3.5795585738863015`*^9}, {3.579558822086649*^9, 3.579558823556651*^9}, {
3.579558905576766*^9, 3.5795589085567703`*^9}, {3.579558982036873*^9,
3.5795590045369043`*^9}, {3.579559110317053*^9, 3.579559113487057*^9}},
TextAlignment->Center,
FontSize->12,
FontWeight->"Bold"],
" is ",
Cell[BoxData["True"], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{{3.4796579723816*^9, 3.4796580261689425`*^9},
3.479661191290163*^9, {3.479686720164157*^9, 3.479686720204214*^9}, {
3.479686831554328*^9, 3.479686834819022*^9}, {3.4940970712485504`*^9,
3.4940971130286083`*^9}, 3.4940971455886545`*^9, 3.4953221152495327`*^9,
3.495322146199576*^9, {3.495322261579737*^9, 3.4953222704097495`*^9},
3.4953325041434045`*^9, 3.4953325401034546`*^9, {3.4953327138936977`*^9,
3.4953327232437115`*^9}, {3.4953341614457245`*^9, 3.4953341867757597`*^9},
3.5501063615760555`*^9, {3.5501064648262005`*^9, 3.550106490466236*^9}, {
3.550106525066285*^9, 3.550106540276306*^9}, {3.5501065790863605`*^9,
3.5501066156964116`*^9}, {3.5528423117869005`*^9, 3.552842314026904*^9}, {
3.5528426917374325`*^9, 3.5528426937974358`*^9}, {3.5528429682378197`*^9,
3.5528429694078217`*^9}, {3.5528433415383425`*^9,
3.5528433442283463`*^9}, {3.5528435601586485`*^9,
3.5528435612786503`*^9}, {3.552844695100238*^9, 3.552844701190246*^9}, {
3.5528471263836412`*^9, 3.552847134093652*^9}, {3.5795487900050325`*^9,
3.579548792195035*^9}, {3.5795492795057173`*^9, 3.579549280715719*^9}, {
3.5795493517058187`*^9, 3.5795493524758196`*^9}, {3.579549671386266*^9,
3.579549675026271*^9}, 3.5795497284863462`*^9, {3.5795585728663*^9,
3.5795585738863015`*^9}, {3.579558822086649*^9, 3.579558823556651*^9}, {
3.579558905576766*^9, 3.5795589085567703`*^9}, {3.579558982036873*^9,
3.5795590045369043`*^9}, {3.579559110317053*^9, 3.579559113487057*^9}},
TextAlignment->Center,
FontSize->12,
FontWeight->"Bold"],
", antiderivatives of expressions of the form ",
Cell[BoxData[
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"d", "+",
RowBox[{"e", " ", "x"}]}], ")"}], "m"],
SuperscriptBox[
RowBox[{"(",
SuperscriptBox["F",
RowBox[{"c",
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ", "x"}]}], ")"}]}]], ")"}], "n"]}]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{{3.4796579723816*^9, 3.4796580261689425`*^9},
3.479661191290163*^9, {3.479686720164157*^9, 3.479686720204214*^9}, {
3.479686831554328*^9, 3.479686834819022*^9}, {3.4940970712485504`*^9,
3.4940971130286083`*^9}, 3.4940971455886545`*^9, 3.4953221152495327`*^9,
3.495322146199576*^9, {3.495322261579737*^9, 3.4953222704097495`*^9},
3.4953325041434045`*^9, 3.4953325401034546`*^9, {3.4953327138936977`*^9,
3.4953327232437115`*^9}, {3.4953341614457245`*^9, 3.4953341867757597`*^9},
3.5501063615760555`*^9, {3.5501064648262005`*^9, 3.550106490466236*^9}, {
3.550106525066285*^9, 3.550106540276306*^9}, {3.5501065790863605`*^9,
3.5501066156964116`*^9}, {3.5528423117869005`*^9, 3.552842314026904*^9}, {
3.5528426917374325`*^9, 3.5528426937974358`*^9}, {3.5528429682378197`*^9,
3.5528429694078217`*^9}, {3.5528433415383425`*^9,
3.5528433442283463`*^9}, {3.5528435601586485`*^9,
3.5528435612786503`*^9}, {3.552844695100238*^9, 3.552844701190246*^9}, {
3.5528471263836412`*^9, 3.552847134093652*^9}, {3.5795487900050325`*^9,
3.579548792195035*^9}, {3.5795492795057173`*^9, 3.579549280715719*^9}, {
3.5795493517058187`*^9, 3.5795493524758196`*^9}, {3.579549671386266*^9,
3.579549675026271*^9}, 3.5795497284863462`*^9, {3.5795585728663*^9,
3.5795585738863015`*^9}, {3.579558822086649*^9, 3.579558823556651*^9}, {
3.579558905576766*^9, 3.5795589085567703`*^9}, {3.579558982036873*^9,
3.5795590045369043`*^9}, {3.579559110317053*^9, 3.579559113487057*^9}},
TextAlignment->Center,
FontSize->12,
FontWeight->"Bold"],
" will be much more compactly expressed in terms of the ",
Cell[BoxData["Gamma"], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{{3.4796579723816*^9, 3.4796580261689425`*^9},
3.479661191290163*^9, {3.479686720164157*^9, 3.479686720204214*^9}, {
3.479686831554328*^9, 3.479686834819022*^9}, {3.4940970712485504`*^9,
3.4940971130286083`*^9}, 3.4940971455886545`*^9, 3.4953221152495327`*^9,
3.495322146199576*^9, {3.495322261579737*^9, 3.4953222704097495`*^9},
3.4953325041434045`*^9, 3.4953325401034546`*^9, {3.4953327138936977`*^9,
3.4953327232437115`*^9}, {3.4953341614457245`*^9, 3.4953341867757597`*^9},
3.5501063615760555`*^9, {3.5501064648262005`*^9, 3.550106490466236*^9}, {
3.550106525066285*^9, 3.550106540276306*^9}, {3.5501065790863605`*^9,
3.5501066156964116`*^9}, {3.5528423117869005`*^9, 3.552842314026904*^9}, {
3.5528426917374325`*^9, 3.5528426937974358`*^9}, {3.5528429682378197`*^9,
3.5528429694078217`*^9}, {3.5528433415383425`*^9,
3.5528433442283463`*^9}, {3.5528435601586485`*^9,
3.5528435612786503`*^9}, {3.552844695100238*^9, 3.552844701190246*^9}, {
3.5528471263836412`*^9, 3.552847134093652*^9}, {3.5795487900050325`*^9,
3.579548792195035*^9}, {3.5795492795057173`*^9, 3.579549280715719*^9}, {
3.5795493517058187`*^9, 3.5795493524758196`*^9}, {3.579549671386266*^9,
3.579549675026271*^9}, 3.5795497284863462`*^9, {3.5795585728663*^9,
3.5795585738863015`*^9}, {3.579558822086649*^9, 3.579558823556651*^9}, {
3.579558905576766*^9, 3.5795589085567703`*^9}, {3.579558982036873*^9,
3.5795590045369043`*^9}, {3.579559110317053*^9, 3.579559113487057*^9}},
TextAlignment->Center,
FontSize->12,
FontWeight->"Bold"],
" function instead of elementary functions."
}], "Subsubsection",
CellDingbat->"\[FilledSmallSquare]",
CellChangeTimes->{{3.4794189093216*^9, 3.479418932274605*^9}, {
3.479418981395237*^9, 3.4794189822564754`*^9}, {3.4794192068193808`*^9,
3.4794192077607346`*^9}, 3.479420089138093*^9, {3.479420130978256*^9,
3.4794201410627565`*^9}, {3.479420560345656*^9, 3.479420578171288*^9}, {
3.479420683943381*^9, 3.4794206847645617`*^9}, {3.4794210347678413`*^9,
3.4794210503903055`*^9}, 3.4803613662913427`*^9, {3.480361406058525*^9,
3.48036141974821*^9}, {3.4803614672865667`*^9, 3.480361474717252*^9},
3.4807050675119123`*^9, {3.495322033659418*^9, 3.495322068589467*^9}, {
3.495332560963484*^9, 3.4953325798335104`*^9}, {3.4953342240158124`*^9,
3.4953342584258604`*^9}, {3.5488732775776024`*^9,
3.5488732775776024`*^9}, {3.548873326337671*^9, 3.548873326337671*^9}, {
3.5488733961777687`*^9, 3.548873400247774*^9}, {3.548882497145359*^9,
3.5488825231053953`*^9}, {3.548882954315999*^9, 3.548882954315999*^9}, {
3.548883883077299*^9, 3.5488839072773333`*^9}, {3.5488840277975016`*^9,
3.5488840277975016`*^9}, {3.550092011002294*^9, 3.550092011712295*^9}, {
3.5500922678526535`*^9, 3.5500922678526535`*^9}, {3.550093724424693*^9,
3.550093724424693*^9}, {3.5500971557107277`*^9, 3.5500971557107277`*^9}, {
3.5501063662860622`*^9, 3.550106398116107*^9}, {3.550106454446186*^9,
3.550106454446186*^9}, 3.5501069180668344`*^9, {3.5501072155072513`*^9,
3.5501072155072513`*^9}, {3.5501082711687293`*^9,
3.5501082711687293`*^9}, {3.5528426907374315`*^9,
3.5528426907374315`*^9}, {3.552843846249049*^9, 3.552843846249049*^9}, {
3.552926049123206*^9, 3.5529260500280075`*^9}, {3.614435460468696*^9,
3.6144354830209866`*^9}, {3.6144355645106473`*^9,
3.6144356670275106`*^9}, {3.6144384893899403`*^9, 3.614438642770714*^9}, {
3.614438809104227*^9, 3.614438852651718*^9}, {3.614439207616021*^9,
3.6144392175165873`*^9}, {3.673810385263941*^9, 3.673810385263941*^9}}],
Cell[BoxData[
RowBox[{
RowBox[{"$UseGamma", "=", "False"}], ";"}]], "Code",
CellChangeTimes->{{3.494097279728842*^9, 3.494097309778884*^9},
3.4953222454097147`*^9, 3.4953324633733473`*^9, 3.4953326632436275`*^9,
3.4953341350856876`*^9, {3.548816716117523*^9, 3.54881672825754*^9}, {
3.5488168441577024`*^9, 3.548816845257704*^9}, {3.5488174267385178`*^9,
3.548817476678588*^9}, {3.5488175358286705`*^9, 3.548817537178673*^9},
3.548818879032552*^9, 3.5488189948567142`*^9, {3.548873179327465*^9,
3.5488731994574933`*^9}, {3.5488733093376465`*^9, 3.5488733155476556`*^9},
3.5488825439754243`*^9, {3.5488826089855156`*^9, 3.548882630935546*^9},
3.5488838853873024`*^9, 3.5488840304775057`*^9, {3.550091804762005*^9,
3.5500918642520885`*^9}, {3.5500920434623394`*^9,
3.5500921913025465`*^9}, {3.5500935055643864`*^9,
3.5500935449644413`*^9}, {3.5500935868345003`*^9, 3.550093588744503*^9}, {
3.550093644764581*^9, 3.550093654344595*^9}, 3.550097159490733*^9,
3.550106818926696*^9, {3.5501068633667583`*^9, 3.5501068987568083`*^9}, {
3.5501071702771883`*^9, 3.5501071712671895`*^9}, {3.550107218837256*^9,
3.5501072235372624`*^9}, 3.5501082039586353`*^9, 3.550109236880081*^9, {
3.552842314946905*^9, 3.5528423179569097`*^9}, 3.552842477407133*^9,
3.5528425238471975`*^9, {3.5528426947374372`*^9, 3.552842703087449*^9}, {
3.5528430422779236`*^9, 3.552843043307925*^9}, 3.552843088757989*^9,
3.5528431567680836`*^9, {3.552843347728351*^9, 3.5528433497783537`*^9}, {
3.552843562598652*^9, 3.5528435632086525`*^9}, 3.5528436835188212`*^9,
3.552844216459567*^9, 3.5528442843696623`*^9, {3.552844706140253*^9,
3.552844714870265*^9}, 3.552845986792046*^9, {3.5528471936237354`*^9,
3.5528472087337565`*^9}, {3.552926054099615*^9, 3.552926054910816*^9}, {
3.5529275303886056`*^9, 3.5529275747238836`*^9}, 3.5795494000658865`*^9,
3.579549439275941*^9, 3.579549476805994*^9, {3.5795497467963715`*^9,
3.5795497486763744`*^9}, {3.5795497909664335`*^9, 3.579549801246448*^9}, {
3.579553111741083*^9, 3.579553118591092*^9}, {3.579553619284293*^9,
3.5795536265743036`*^9}, {3.5795586243963723`*^9,
3.5795586248963733`*^9}, {3.579558671406438*^9, 3.5795587013164797`*^9},
3.579558739216533*^9, {3.5795589205967875`*^9, 3.579558927636797*^9},
3.579558988336882*^9, {3.5795590471569643`*^9, 3.579559048416966*^9},
3.6144353068819113`*^9, {3.614435550434842*^9, 3.6144355564221845`*^9}, {
3.6144384265533466`*^9, 3.614438431660639*^9}, {3.614438786225919*^9,
3.6144387908331823`*^9}, {3.6144391978404617`*^9, 3.614439198755514*^9}},
Background->GrayLevel[0.85]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"\t",
RowBox[{Cell[TextData[StyleBox["1:",
FontFamily->"Arial",
FontColor->RGBColor[1, 0, 0]]], "None"], " ",
RowBox[{"\[Integral]",
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"c", "+",
RowBox[{"d", " ", "x"}]}], ")"}], "m"], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"b", " ",
SuperscriptBox["F",
RowBox[{"g", " ",
RowBox[{"(",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], ")"}]}]]}], ")"}], "n"],
RowBox[{"\[DifferentialD]", "x"}], " ",
StyleBox["when",
FontFamily->"Arial",
FontWeight->"Plain"],
StyleBox[" ",
FontFamily->"Arial",
FontWeight->"Plain"], Cell[TextData[Cell[BoxData[
RowBox[{
RowBox[{"m", ">", "0"}], " ", "\[And]", " ",
RowBox[{
RowBox[{"2", "m"}], "\[Element]", "\[DoubleStruckCapitalZ]"}]}]]]],
"None"]}]}]}]}]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{
3.477935275784027*^9, {3.477935350060832*^9, 3.477935352384173*^9}, {
3.477935393803731*^9, 3.477935400102789*^9}, {3.477935515378547*^9,
3.47793552034569*^9}, 3.478120029940968*^9, {3.479318860690858*^9,
3.47931886615872*^9}, {3.4794185033278093`*^9, 3.479418503918659*^9},
3.4795122294117584`*^9, {3.479615913307893*^9, 3.4796159352794867`*^9},
3.4796160386581373`*^9, 3.4796867204045024`*^9, {3.4928025699585147`*^9,
3.492802570130115*^9}, 3.492822274480175*^9, 3.492825822242408*^9, {
3.4940970615585365`*^9, 3.494097062168537*^9}, {3.496441349250718*^9,
3.496441349830719*^9}, 3.4964414848609076`*^9, 3.496521708137803*^9, {
3.4965218981240697`*^9, 3.49652189838407*^9}, 3.4965229070755*^9,
3.519247079685614*^9, {3.5193208582062006`*^9, 3.5193208612170057`*^9},
3.5193325694253187`*^9, {3.5193422443984776`*^9, 3.5193422447260776`*^9},
3.5193424488212357`*^9, {3.5193434708254333`*^9, 3.519343473103037*^9}, {
3.5193435097631016`*^9, 3.51934353169674*^9}, {3.519345739319023*^9,
3.519345739599823*^9}, 3.5193462601259375`*^9, {3.5193475061060295`*^9,
3.5193475233908596`*^9}, {3.519351391880224*^9, 3.5193513931402254`*^9}, {
3.519403773021052*^9, 3.5194037798564425`*^9}, 3.5194106793250647`*^9, {
3.519537578341393*^9, 3.5195375792305946`*^9}, {3.5195376277778797`*^9,
3.51953767927357*^9}, {3.5197586260636144`*^9, 3.5197586260636144`*^9}, {
3.51978053295651*^9, 3.519780542862528*^9}, {3.5197806526087203`*^9,
3.5197806657595434`*^9}, {3.5197807490168896`*^9, 3.5197807642581167`*^9},
3.5197809004619555`*^9, {3.519782653514635*^9, 3.5197826623286505`*^9}, {
3.5200207810164795`*^9, 3.520020785046485*^9}, {3.5213126833374643`*^9,
3.5213126833374643`*^9}, {3.521328235411002*^9, 3.521328235411002*^9}, {
3.523315567893022*^9, 3.523315567893022*^9}, {3.5233157569332867`*^9,
3.5233157613032923`*^9}, {3.5323023198133526`*^9, 3.532302355723403*^9}, {
3.5323026417638035`*^9, 3.5323026417638035`*^9}, {3.5323026980138817`*^9,
3.5323026980138817`*^9}, {3.532636287104328*^9, 3.532636287104328*^9}, {
3.5330803686035347`*^9, 3.533080368863535*^9}, {3.533248909289961*^9,
3.5332489110299635`*^9}, {3.534962469565694*^9, 3.5349624910757236`*^9}, {
3.5349625224057674`*^9, 3.534962522655768*^9}, {3.534965265519608*^9,
3.534965265519608*^9}, {3.5349668288168063`*^9, 3.5349668292668066`*^9}, {
3.5349747358481646`*^9, 3.5349747358481646`*^9}, {3.534975457949176*^9,
3.534975457949176*^9}, {3.5368633963532934`*^9, 3.536863396571694*^9}, {
3.541644322511304*^9, 3.5416443577513533`*^9}, {3.5416458269234104`*^9,
3.541645839633428*^9}, {3.5416460312236967`*^9, 3.541646031483697*^9},
3.541646227783972*^9, {3.541647080335165*^9, 3.5416471077052035`*^9}, {
3.541648997607849*^9, 3.5416489978278494`*^9}, 3.541649088407976*^9, {
3.5417848711596775`*^9, 3.541784902429721*^9}, {3.541786145331461*^9,
3.5417861455914617`*^9}, {3.5417870037166634`*^9, 3.5417870039366636`*^9},
3.5462979620242105`*^9, {3.546298264094633*^9, 3.546298265344635*^9}, {
3.546299000235664*^9, 3.546299001505666*^9}, {3.546315119909564*^9,
3.5463151267659564`*^9}, {3.547227356319705*^9, 3.547227356319705*^9},
3.547918559331044*^9, {3.547918610170952*^9, 3.5479186304411116`*^9},
3.548537755517557*^9, 3.5485441629685287`*^9, 3.5485517520154133`*^9, {
3.5488740727887154`*^9, 3.5488740727887154`*^9}, {3.548874206618903*^9,
3.548874206808903*^9}, {3.5488771226154857`*^9, 3.5488771332055006`*^9}, {
3.548878122226885*^9, 3.548878122366885*^9}, 3.548878188846978*^9, {
3.548882350145153*^9, 3.548882373605186*^9}, 3.548882435765273*^9, {
3.5488824861553435`*^9, 3.5488824861553435`*^9}, {3.5488825297954044`*^9,
3.5488825297954044`*^9}, {3.54888256919546*^9, 3.5488825868054843`*^9}, {
3.548883870637282*^9, 3.548883870637282*^9}, {3.5488839030373273`*^9,
3.5488839030373273`*^9}, {3.5488839818074374`*^9, 3.548884015947485*^9}, {
3.5500922442826204`*^9, 3.5500922592326417`*^9}, {3.5500925229930105`*^9,
3.550092523183011*^9}, {3.550092560253063*^9, 3.5500925604230633`*^9}, {
3.550093689654644*^9, 3.5500937159446807`*^9}, {3.550097151700722*^9,
3.550097151700722*^9}, {3.5501061958958235`*^9, 3.5501061960958242`*^9}, {
3.5501062579559107`*^9, 3.5501062691259265`*^9}, {3.5501064214861393`*^9,
3.5501064483561773`*^9}, {3.5501072046872363`*^9,
3.5501072092172422`*^9}, {3.5501082663287225`*^9, 3.5501082663287225`*^9},
3.5501084178989344`*^9, 3.5528423044768906`*^9, {3.5528426858774247`*^9,
3.552842686577426*^9}, 3.5528429659778166`*^9, 3.552843559598648*^9, {
3.552843845529048*^9, 3.552843845529048*^9}, 3.552847117793629*^9, {
3.5529260063791313`*^9, 3.5529260293891716`*^9}, 3.5532224074321613`*^9,
3.5795487431649666`*^9, 3.579548951725259*^9, 3.5795492786357164`*^9,
3.579549351275818*^9, 3.5795585724362993`*^9, 3.5795588185066442`*^9, {
3.614435512487672*^9, 3.614435523088278*^9}, {3.6144620601640797`*^9,
3.614462083817433*^9}, 3.614463316997967*^9, {3.6144633904911704`*^9,
3.6144633981086063`*^9}, {3.6738105688774433`*^9,
3.6738106146200595`*^9}, {3.6738145986429324`*^9,
3.6738145997229943`*^9}, {3.6738152103199186`*^9, 3.6738152170003004`*^9},
3.6745830200420437`*^9, 3.674583052075876*^9, 3.674584118078848*^9,
3.674584928017174*^9},
FontSize->12,
FontWeight->"Bold"],
Cell["Derivation: Integration by parts", "Subsubsection",
CellChangeTimes->{{3.495321995009364*^9, 3.4953219984993687`*^9}, {
3.4953340975556355`*^9, 3.495334101755641*^9}}],
Cell[TextData[{
"Basis: ",
Cell[BoxData[
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"b", " ",
SuperscriptBox["F",
RowBox[{"g", " ",
RowBox[{"(",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], ")"}]}]]}], ")"}], "n"], "\[Equal]",
RowBox[{
SubscriptBox["\[PartialD]", "x"],
FractionBox[
SuperscriptBox[
RowBox[{"(",
RowBox[{"b", " ",
SuperscriptBox["F",
RowBox[{"g", " ",
RowBox[{"(",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], ")"}]}]]}], ")"}], "n"],
RowBox[{"f", " ", "g", " ", "n", " ",
RowBox[{"Log", "[", "F", "]"}]}]]}]}]]]
}], "Subsubsection",
CellChangeTimes->{{3.495321995009364*^9, 3.4953220146593914`*^9}, {
3.495322060049455*^9, 3.4953220695394683`*^9}, 3.4953324529433327`*^9,
3.4953341264356756`*^9, {3.5488752985704317`*^9, 3.5488752985704317`*^9}, {
3.548882905755931*^9, 3.548882921645953*^9}, {3.550106698996528*^9,
3.5501067522966027`*^9}, {3.552842305866893*^9, 3.552842307596895*^9}, {
3.552842966747818*^9, 3.552842967457819*^9}, {3.552843335158334*^9,
3.552843335158334*^9}, {3.5528448228604164`*^9, 3.552844824730419*^9}, {
3.552847150523675*^9, 3.552847155623682*^9}, {3.579549628426206*^9,
3.5795496593962493`*^9}, {3.5795588195966454`*^9,
3.5795588203866467`*^9}, {3.579558891916747*^9, 3.5795588928967485`*^9}, {
3.67381065799654*^9, 3.67381065799654*^9}, {3.674583127046164*^9,
3.674583127046164*^9}, {3.6745841802004013`*^9, 3.6745841802004013`*^9}, {
3.6745849287692165`*^9, 3.674584929330249*^9}}],
Cell[TextData[{
"Rule: If ",
Cell[BoxData[
RowBox[{
RowBox[{"m", ">", "0"}], " ", "\[And]", " ",
RowBox[{
RowBox[{"2", "m"}], "\[Element]", "\[DoubleStruckCapitalZ]"}]}]]],
", then"
}], "Subsubsection",
CellDingbat->"\[FilledSmallSquare]",
CellChangeTimes->{{3.4794189093216*^9, 3.479418932274605*^9}, {
3.479418981395237*^9, 3.4794189822564754`*^9}, {3.4794192068193808`*^9,
3.4794192077607346`*^9}, 3.479420089138093*^9, {3.479420130978256*^9,
3.4794201410627565`*^9}, {3.479420560345656*^9, 3.479420578171288*^9}, {
3.479420683943381*^9, 3.4794206847645617`*^9}, {3.4794210347678413`*^9,
3.4794210503903055`*^9}, 3.4803613662913427`*^9, {3.480361406058525*^9,
3.48036141974821*^9}, {3.4803614672865667`*^9, 3.480361474717252*^9},
3.4807050675119123`*^9, {3.495322033659418*^9, 3.495322068589467*^9}, {
3.495332560963484*^9, 3.4953325798335104`*^9}, {3.4953342240158124`*^9,
3.4953342584258604`*^9}, {3.5488732775776024`*^9,
3.5488732775776024`*^9}, {3.548873326337671*^9, 3.548873326337671*^9}, {
3.5488733961777687`*^9, 3.548873400247774*^9}, {3.548882497145359*^9,
3.5488825231053953`*^9}, {3.548882954315999*^9, 3.548882954315999*^9}, {
3.548883883077299*^9, 3.5488839072773333`*^9}, {3.5488840277975016`*^9,
3.5488840277975016`*^9}, {3.550092011002294*^9, 3.550092011712295*^9}, {
3.5500922678526535`*^9, 3.5500922678526535`*^9}, {3.550093724424693*^9,
3.550093724424693*^9}, {3.5500971557107277`*^9, 3.5500971557107277`*^9}, {
3.5501063662860622`*^9, 3.550106398116107*^9}, {3.550106454446186*^9,
3.550106454446186*^9}, 3.5501069180668344`*^9, {3.5501072155072513`*^9,
3.5501072155072513`*^9}, {3.5501082711687293`*^9,
3.5501082711687293`*^9}, {3.5528426907374315`*^9,
3.5528426907374315`*^9}, {3.552843846249049*^9, 3.552843846249049*^9}, {
3.552926049123206*^9, 3.5529260500280075`*^9}, {3.614435535412983*^9,
3.614435535412983*^9}, {3.614462092009901*^9, 3.614462092009901*^9}, {
3.614463598140047*^9, 3.614463598140047*^9}, {3.673815230143052*^9,
3.6738152301440525`*^9}}],
Cell[BoxData[
RowBox[{
RowBox[{"\[Integral]",
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"c", "+",
RowBox[{"d", " ", "x"}]}], ")"}], "m"], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"b", " ",
SuperscriptBox["F",
RowBox[{"g", " ",
RowBox[{"(",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], ")"}]}]]}], ")"}], "n"],
RowBox[{"\[DifferentialD]",
RowBox[{"x", " ", "\[LongRightArrow]", " ",
FractionBox[
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"c", "+",
RowBox[{"d", " ", "x"}]}], ")"}], "m"], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"b", " ",
SuperscriptBox["F",
RowBox[{"g", " ",
RowBox[{"(",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], ")"}]}]]}], ")"}], "n"]}],
RowBox[{"f", " ", "g", " ", "n", " ",
RowBox[{"Log", "[", "F", "]"}]}]]}]}]}]}], "-",
RowBox[{
FractionBox[
RowBox[{"d", " ", "m"}],
RowBox[{"f", " ", "g", " ", "n", " ",
RowBox[{"Log", "[", "F", "]"}]}]],
RowBox[{"\[Integral]",
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"c", "+",
RowBox[{"d", " ", "x"}]}], ")"}],
RowBox[{"m", "-", "1"}]], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"b", " ",
SuperscriptBox["F",
RowBox[{"g", " ",
RowBox[{"(",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], ")"}]}]]}], ")"}], "n"],
RowBox[{"\[DifferentialD]", "x"}]}]}]}]}]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{{3.4796579723816*^9, 3.4796580261689425`*^9},
3.479661191290163*^9, {3.479686720164157*^9, 3.479686720204214*^9}, {
3.479686831554328*^9, 3.479686834819022*^9}, {3.4940970712485504`*^9,
3.4940971130286083`*^9}, 3.4940971455886545`*^9, 3.4953221152495327`*^9,
3.495322146199576*^9, {3.495322261579737*^9, 3.4953222704097495`*^9},
3.4953325041434045`*^9, 3.4953325401034546`*^9, {3.4953327138936977`*^9,
3.4953327232437115`*^9}, {3.4953341614457245`*^9, 3.4953341867757597`*^9},
3.5501063615760555`*^9, {3.5501064648262005`*^9, 3.550106490466236*^9}, {
3.550106525066285*^9, 3.550106540276306*^9}, {3.5501065790863605`*^9,
3.5501066156964116`*^9}, {3.5528423117869005`*^9, 3.552842314026904*^9}, {
3.5528426917374325`*^9, 3.5528426937974358`*^9}, {3.5528429682378197`*^9,
3.5528429694078217`*^9}, {3.5528433415383425`*^9,
3.5528433442283463`*^9}, {3.5528435601586485`*^9,
3.5528435612786503`*^9}, {3.552844695100238*^9, 3.552844701190246*^9}, {
3.5528471263836412`*^9, 3.552847134093652*^9}, {3.5795487900050325`*^9,
3.579548792195035*^9}, {3.5795492795057173`*^9, 3.579549280715719*^9}, {
3.5795493517058187`*^9, 3.5795493524758196`*^9}, {3.579549671386266*^9,
3.579549675026271*^9}, 3.5795497284863462`*^9, {3.5795585728663*^9,
3.5795585738863015`*^9}, {3.579558822086649*^9, 3.579558823556651*^9}, {
3.579558905576766*^9, 3.5795589085567703`*^9}, {3.579558982036873*^9,
3.5795590045369043`*^9}, {3.579559110317053*^9, 3.579559113487057*^9}, {
3.6738105903226695`*^9, 3.673810632865103*^9}, {3.6738107463915963`*^9,
3.6738107498977966`*^9}, {3.674583020060045*^9, 3.674583020068045*^9}, {
3.674583142642056*^9, 3.6745832043315845`*^9}, 3.674584133059705*^9, {
3.6745841890679083`*^9, 3.6745841986884584`*^9}, {3.674584930315305*^9,
3.6745849313543644`*^9}},
TextAlignment->Center,
FontSize->12,
FontWeight->"Bold"],
Cell["Program code:", "Subsubsection",
CellDingbat->"\[FilledSmallSquare]",
CellChangeTimes->{{3.4794189093216*^9, 3.479418932274605*^9}, {
3.479418981395237*^9, 3.4794189822564754`*^9}, {3.4794192068193808`*^9,
3.4794192077607346`*^9}, 3.479420089138093*^9, {3.479420130978256*^9,
3.4794201410627565`*^9}, {3.479420560345656*^9, 3.479420578171288*^9}, {
3.479420683943381*^9, 3.4794206847645617`*^9}, {3.4794210347678413`*^9,
3.4794210503903055`*^9}, 3.4803613662913427`*^9, {3.480361406058525*^9,
3.48036141974821*^9}, {3.4803614672865667`*^9, 3.480361474717252*^9},
3.4807050675119123`*^9, {3.492804314166378*^9, 3.4928043441496305`*^9}, {
3.4928044532166224`*^9, 3.492804453513023*^9}, {3.492805162266266*^9,
3.492805165713872*^9}, {3.550106725296565*^9, 3.550106727366568*^9}}],
Cell[BoxData[
RowBox[{
RowBox[{"Int", "[",
RowBox[{
RowBox[{
RowBox[{
RowBox[{"(",
RowBox[{"c_.", "+",
RowBox[{"d_.", "*", "x_"}]}], ")"}], "^", "m_."}], "*",
RowBox[{
RowBox[{"(",
RowBox[{"b_.", "*",
RowBox[{"F_", "^",
RowBox[{"(",
RowBox[{"g_.", "*",
RowBox[{"(",
RowBox[{"e_.", "+",
RowBox[{"f_.", "*", "x_"}]}], ")"}]}], ")"}]}]}], ")"}], "^",
"n_."}]}], ",", "x_Symbol"}], "]"}], " ", ":=", "\n", " ",
RowBox[{
RowBox[{
RowBox[{
RowBox[{
RowBox[{"(",
RowBox[{"c", "+",
RowBox[{"d", "*", "x"}]}], ")"}], "^", "m"}], "*",
RowBox[{
RowBox[{
RowBox[{"(",
RowBox[{"b", "*",
RowBox[{"F", "^",
RowBox[{"(",
RowBox[{"g", "*",
RowBox[{"(",
RowBox[{"e", "+",
RowBox[{"f", "*", "x"}]}], ")"}]}], ")"}]}]}], ")"}], "^",
"n"}], "/",
RowBox[{"(",
RowBox[{"f", "*", "g", "*", "n", "*",
RowBox[{"Log", "[", "F", "]"}]}], ")"}]}]}], " ", "-", " ",
"\[IndentingNewLine]", " ",
RowBox[{"d", "*",
RowBox[{"m", "/",
RowBox[{"(",
RowBox[{"f", "*", "g", "*", "n", "*",
RowBox[{"Log", "[", "F", "]"}]}], ")"}]}], "*",
RowBox[{"Int", "[",
RowBox[{
RowBox[{
RowBox[{
RowBox[{"(",
RowBox[{"c", "+",
RowBox[{"d", "*", "x"}]}], ")"}], "^",
RowBox[{"(",
RowBox[{"m", "-", "1"}], ")"}]}], "*",
RowBox[{
RowBox[{"(",
RowBox[{"b", "*",
RowBox[{"F", "^",
RowBox[{"(",
RowBox[{"g", "*",
RowBox[{"(",
RowBox[{"e", "+",
RowBox[{"f", "*", "x"}]}], ")"}]}], ")"}]}]}], ")"}], "^",
"n"}]}], ",", "x"}], "]"}]}]}], " ", "/;", "\n",
RowBox[{
RowBox[{"FreeQ", "[",
RowBox[{
RowBox[{"{",
RowBox[{
"F", ",", "b", ",", "c", ",", "d", ",", "e", ",", "f", ",", "g", ",",
"n"}], "}"}], ",", "x"}], "]"}], " ", "&&", " ",
RowBox[{"GtQ", "[",
RowBox[{"m", ",", "0"}], "]"}], " ", "&&", " ",
RowBox[{"IntegerQ", "[",
RowBox[{"2", "*", "m"}], "]"}], " ", "&&", " ",
RowBox[{"Not", "[",
RowBox[{"TrueQ", "[", "$UseGamma", "]"}], "]"}]}]}]}]], "Code",
CellChangeTimes->{{3.494097279728842*^9, 3.494097309778884*^9},
3.4953222454097147`*^9, 3.4953324633733473`*^9, 3.4953326632436275`*^9,
3.4953341350856876`*^9, {3.548816716117523*^9, 3.54881672825754*^9}, {
3.5488168441577024`*^9, 3.548816845257704*^9}, {3.5488174267385178`*^9,
3.548817476678588*^9}, {3.5488175358286705`*^9, 3.548817537178673*^9},
3.548818879032552*^9, 3.5488189948567142`*^9, {3.548873179327465*^9,
3.5488731994574933`*^9}, {3.5488733093376465`*^9, 3.5488733155476556`*^9},
3.5488825439754243`*^9, {3.5488826089855156`*^9, 3.548882630935546*^9},
3.5488838853873024`*^9, 3.5488840304775057`*^9, {3.550091804762005*^9,
3.5500918642520885`*^9}, {3.5500920434623394`*^9,
3.5500921913025465`*^9}, {3.5500935055643864`*^9,
3.5500935449644413`*^9}, {3.5500935868345003`*^9, 3.550093588744503*^9}, {
3.550093644764581*^9, 3.550093654344595*^9}, 3.550097159490733*^9,
3.550106818926696*^9, {3.5501068633667583`*^9, 3.5501068987568083`*^9}, {
3.5501071702771883`*^9, 3.5501071712671895`*^9}, {3.550107218837256*^9,
3.5501072235372624`*^9}, 3.5501082039586353`*^9, 3.550109236880081*^9, {
3.552842314946905*^9, 3.5528423179569097`*^9}, 3.552842477407133*^9,
3.5528425238471975`*^9, {3.5528426947374372`*^9, 3.552842703087449*^9}, {
3.5528430422779236`*^9, 3.552843043307925*^9}, 3.552843088757989*^9,
3.5528431567680836`*^9, {3.552843347728351*^9, 3.5528433497783537`*^9}, {
3.552843562598652*^9, 3.5528435632086525`*^9}, 3.5528436835188212`*^9,
3.552844216459567*^9, 3.5528442843696623`*^9, {3.552844706140253*^9,
3.552844714870265*^9}, 3.552845986792046*^9, {3.5528471936237354`*^9,
3.5528472087337565`*^9}, {3.552926054099615*^9, 3.552926054910816*^9}, {
3.5529275303886056`*^9, 3.5529275747238836`*^9}, 3.5795494000658865`*^9,
3.579549439275941*^9, 3.579549476805994*^9, {3.5795497467963715`*^9,
3.5795497486763744`*^9}, {3.5795497909664335`*^9, 3.579549801246448*^9}, {
3.579553111741083*^9, 3.579553118591092*^9}, {3.579553619284293*^9,
3.5795536265743036`*^9}, {3.5795586243963723`*^9,
3.5795586248963733`*^9}, {3.579558671406438*^9, 3.5795587013164797`*^9},
3.579558739216533*^9, {3.5795589205967875`*^9, 3.579558927636797*^9},
3.579558988336882*^9, {3.5795590471569643`*^9, 3.579559048416966*^9},
3.6144353068819113`*^9, {3.614435550434842*^9, 3.6144355564221845`*^9}, {
3.6144384265533466`*^9, 3.614438431660639*^9}, {3.6144621285929937`*^9,
3.614462146147998*^9}, {3.6144636037563686`*^9, 3.6144636183762045`*^9}, {
3.614471679656844*^9, 3.6144716799288597`*^9}, {3.6145568877653627`*^9,
3.6145569221873317`*^9}, 3.6145577730379972`*^9, 3.614558329958852*^9,
3.614558469893855*^9, {3.614651041094572*^9, 3.614651046535883*^9}, {
3.673810731537747*^9, 3.6738107347639313`*^9}, {3.673810789096039*^9,
3.673810814723505*^9}, 3.6738120383694935`*^9, {3.673815236132395*^9,
3.673815257081593*^9}, {3.6745832453569307`*^9, 3.6745832779947977`*^9},
3.6745833363151336`*^9, {3.674584247227235*^9, 3.6745842499783916`*^9},
3.6745843006032877`*^9, {3.6745843336981807`*^9, 3.6745843403535614`*^9},
3.715109317369136*^9, 3.747859849051644*^9},
Background->GrayLevel[0.85]],
Cell["", "Subsubsection",
CellDingbat->None,
CellChangeTimes->{3.4796643211106243`*^9}]
}, Closed]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"\t",
RowBox[{Cell[TextData[StyleBox["2:",
FontFamily->"Arial",
FontColor->RGBColor[1, 0, 0]]], "None"], " ",
RowBox[{"\[Integral]",
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"c", "+",
RowBox[{"d", " ", "x"}]}], ")"}], "m"], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"b", " ",
SuperscriptBox["F",
RowBox[{"g", " ",
RowBox[{"(",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], ")"}]}]]}], ")"}], "n"],
RowBox[{"\[DifferentialD]", "x"}], " ",
StyleBox["when",
FontFamily->"Arial",
FontWeight->"Plain"],
StyleBox[" ",
FontFamily->"Arial",
FontWeight->"Plain"], Cell[TextData[Cell[BoxData[
RowBox[{
RowBox[{"m", "<",
RowBox[{"-", "1"}]}], " ", "\[And]", " ",
RowBox[{
RowBox[{"2", "m"}], "\[Element]", "\[DoubleStruckCapitalZ]"}]}]]]],
"None"]}]}]}]}]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{
3.477935275784027*^9, {3.477935350060832*^9, 3.477935352384173*^9}, {
3.477935393803731*^9, 3.477935400102789*^9}, {3.477935515378547*^9,
3.47793552034569*^9}, 3.478120029940968*^9, {3.479318860690858*^9,
3.47931886615872*^9}, {3.4794185033278093`*^9, 3.479418503918659*^9},
3.4795122294117584`*^9, {3.479615913307893*^9, 3.4796159352794867`*^9},
3.4796160386581373`*^9, 3.4796867204045024`*^9, {3.4928025699585147`*^9,
3.492802570130115*^9}, 3.492822274480175*^9, 3.492825822242408*^9, {
3.4940970615585365`*^9, 3.494097062168537*^9}, {3.496441349250718*^9,
3.496441349830719*^9}, 3.4964414848609076`*^9, 3.496521708137803*^9, {
3.4965218981240697`*^9, 3.49652189838407*^9}, 3.4965229070755*^9,
3.519247079685614*^9, {3.5193208582062006`*^9, 3.5193208612170057`*^9},
3.5193325694253187`*^9, {3.5193422443984776`*^9, 3.5193422447260776`*^9},
3.5193424488212357`*^9, {3.5193434708254333`*^9, 3.519343473103037*^9}, {
3.5193435097631016`*^9, 3.51934353169674*^9}, {3.519345739319023*^9,
3.519345739599823*^9}, 3.5193462601259375`*^9, {3.5193475061060295`*^9,
3.5193475233908596`*^9}, {3.519351391880224*^9, 3.5193513931402254`*^9}, {
3.519403773021052*^9, 3.5194037798564425`*^9}, 3.5194106793250647`*^9, {
3.519537578341393*^9, 3.5195375792305946`*^9}, {3.5195376277778797`*^9,
3.51953767927357*^9}, {3.5197586260636144`*^9, 3.5197586260636144`*^9}, {
3.51978053295651*^9, 3.519780542862528*^9}, {3.5197806526087203`*^9,
3.5197806657595434`*^9}, {3.5197807490168896`*^9, 3.5197807642581167`*^9},
3.5197809004619555`*^9, {3.519782653514635*^9, 3.5197826623286505`*^9}, {
3.5200207810164795`*^9, 3.520020785046485*^9}, {3.5213126833374643`*^9,
3.5213126833374643`*^9}, {3.521328235411002*^9, 3.521328235411002*^9}, {
3.523315567893022*^9, 3.523315567893022*^9}, {3.5233157569332867`*^9,
3.5233157613032923`*^9}, {3.5323023198133526`*^9, 3.532302355723403*^9}, {
3.5323026417638035`*^9, 3.5323026417638035`*^9}, {3.5323026980138817`*^9,
3.5323026980138817`*^9}, {3.532636287104328*^9, 3.532636287104328*^9}, {
3.5330803686035347`*^9, 3.533080368863535*^9}, {3.533248909289961*^9,
3.5332489110299635`*^9}, {3.534962469565694*^9, 3.5349624910757236`*^9}, {
3.5349625224057674`*^9, 3.534962522655768*^9}, {3.534965265519608*^9,
3.534965265519608*^9}, {3.5349668288168063`*^9, 3.5349668292668066`*^9}, {
3.5349747358481646`*^9, 3.5349747358481646`*^9}, {3.534975457949176*^9,
3.534975457949176*^9}, {3.5368633963532934`*^9, 3.536863396571694*^9}, {
3.541644322511304*^9, 3.5416443577513533`*^9}, {3.5416458269234104`*^9,
3.541645839633428*^9}, {3.5416460312236967`*^9, 3.541646031483697*^9},
3.541646227783972*^9, {3.541647080335165*^9, 3.5416471077052035`*^9}, {
3.541648997607849*^9, 3.5416489978278494`*^9}, 3.541649088407976*^9, {
3.5417848711596775`*^9, 3.541784902429721*^9}, {3.541786145331461*^9,
3.5417861455914617`*^9}, {3.5417870037166634`*^9, 3.5417870039366636`*^9},
3.5462979620242105`*^9, {3.546298264094633*^9, 3.546298265344635*^9}, {
3.546299000235664*^9, 3.546299001505666*^9}, {3.546315119909564*^9,
3.5463151267659564`*^9}, {3.547227356319705*^9, 3.547227356319705*^9},
3.547918559331044*^9, {3.547918610170952*^9, 3.5479186304411116`*^9},
3.548537755517557*^9, 3.5485441629685287`*^9, 3.5485517520154133`*^9, {
3.5488740727887154`*^9, 3.5488740727887154`*^9}, {3.548874206618903*^9,
3.548874206808903*^9}, {3.5488771226154857`*^9, 3.5488771332055006`*^9}, {
3.548878122226885*^9, 3.548878122366885*^9}, 3.548878187466976*^9, {
3.5488823466851482`*^9, 3.548882375975189*^9}, 3.5488824384852767`*^9, {
3.5488824881153464`*^9, 3.5488824881153464`*^9}, {3.5488825728354645`*^9,
3.548882573075465*^9}, {3.5488839747174273`*^9, 3.5488839747174273`*^9}, {
3.5488841172076273`*^9, 3.548884119867631*^9}, {3.5488842417478013`*^9,
3.5488842733678455`*^9}, {3.5500922898926845`*^9,
3.5500923738128023`*^9}, {3.550092524353013*^9, 3.550092524543013*^9}, {
3.550092561623065*^9, 3.5500925617830653`*^9}, {3.550106200715831*^9,
3.550106200905831*^9}, {3.550106983486926*^9, 3.5501069912769375`*^9}, {
3.550107070567048*^9, 3.5501070863370705`*^9}, 3.5501071950172224`*^9, {
3.550108275278735*^9, 3.550108275278735*^9}, {3.5501084552089868`*^9,
3.550108455358987*^9}, 3.552842337716937*^9, {3.5528427514575167`*^9,
3.5528427523975177`*^9}, 3.5528429751278296`*^9, 3.552843572758666*^9, {
3.552843866239077*^9, 3.552843866239077*^9}, {3.5528477607345295`*^9,
3.5528477617845306`*^9}, 3.5529260766260543`*^9, {3.5529262622819805`*^9,
3.5529262628747816`*^9}, 3.5532224151376023`*^9, 3.5795487528749804`*^9,
3.579548954225262*^9, 3.5795492927257357`*^9, 3.579549356335825*^9,
3.579558578856309*^9, 3.5795588424566774`*^9, {3.6144380880559855`*^9,
3.6144380880559855`*^9}, {3.614462452603526*^9, 3.614462469070468*^9},
3.614463323088315*^9, {3.614463449380539*^9, 3.614463485057579*^9}, {
3.6144667861233892`*^9, 3.6144668037143955`*^9}, 3.673811487902008*^9, {
3.673811839304107*^9, 3.673811848530635*^9}, {3.6738146008820605`*^9,
3.6738146010380697`*^9}, {3.67381527941187*^9, 3.673815283505104*^9},
3.6745830200790462`*^9, 3.6745833713001347`*^9, 3.6745841212050266`*^9,
3.674584932369423*^9},
FontSize->12,
FontWeight->"Bold"],
Cell["Derivation: Integration by parts", "Subsubsection",
CellChangeTimes->{{3.495321995009364*^9, 3.4953219984993687`*^9}, {
3.4953340975556355`*^9, 3.495334101755641*^9}}],
Cell[TextData[{
"Basis: ",
Cell[BoxData[
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"c", "+",
RowBox[{"d", " ", "x"}]}], ")"}], "m"], "\[Equal]",
RowBox[{
SubscriptBox["\[PartialD]", "x"],
FractionBox[
SuperscriptBox[
RowBox[{"(",
RowBox[{"c", "+",
RowBox[{"d", " ", "x"}]}], ")"}],
RowBox[{"m", "+", "1"}]],
RowBox[{"d",
RowBox[{"(",
RowBox[{"m", "+", "1"}], ")"}]}]]}]}]]]
}], "Subsubsection",
CellChangeTimes->{{3.495321995009364*^9, 3.4953220146593914`*^9}, {
3.495322060049455*^9, 3.4953220695394683`*^9}, 3.4953324529433327`*^9,
3.4953341264356756`*^9, {3.5488752985704317`*^9, 3.5488752985704317`*^9}, {
3.548882905755931*^9, 3.548882921645953*^9}, {3.550106698996528*^9,
3.5501067522966027`*^9}, {3.550107289067354*^9, 3.550107289067354*^9}, {
3.5501073942375016`*^9, 3.5501073969375052`*^9}, {3.552842755937523*^9,
3.5528427573375244`*^9}, {3.552843573298667*^9, 3.5528435738286676`*^9}, {
3.5795492937857375`*^9, 3.579549294295738*^9}, {3.579549356585826*^9,
3.579549356845826*^9}, {3.5795585794263096`*^9, 3.5795585798063097`*^9}, {
3.5795598725706387`*^9, 3.5795598725706387`*^9}, 3.6745830200990467`*^9, {
3.6745834134395447`*^9, 3.6745834134395447`*^9}}],
Cell[TextData[{
"Rule: If ",
Cell[BoxData[
RowBox[{
RowBox[{"m", "<",
RowBox[{"-", "1"}]}], " ", "\[And]", " ",
RowBox[{
RowBox[{"2", "m"}], "\[Element]", "\[DoubleStruckCapitalZ]"}]}]]],
", then"
}], "Subsubsection",
CellDingbat->"\[FilledSmallSquare]",
CellChangeTimes->{{3.4794189093216*^9, 3.479418932274605*^9}, {
3.479418981395237*^9, 3.4794189822564754`*^9}, {3.4794192068193808`*^9,
3.4794192077607346`*^9}, 3.479420089138093*^9, {3.479420130978256*^9,
3.4794201410627565`*^9}, {3.479420560345656*^9, 3.479420578171288*^9}, {
3.479420683943381*^9, 3.4794206847645617`*^9}, {3.4794210347678413`*^9,
3.4794210503903055`*^9}, 3.4803613662913427`*^9, {3.480361406058525*^9,
3.48036141974821*^9}, {3.4803614672865667`*^9, 3.480361474717252*^9},
3.4807050675119123`*^9, {3.495322033659418*^9, 3.495322068589467*^9}, {
3.495332560963484*^9, 3.4953325798335104`*^9}, {3.4953342240158124`*^9,
3.4953342584258604`*^9}, {3.4953343353559685`*^9,
3.4953343804860315`*^9}, {3.5488732348875427`*^9, 3.548873262597582*^9}, {
3.548873422497805*^9, 3.548873422497805*^9}, {3.5488839614474087`*^9,
3.5488839614474087`*^9}, {3.5501071130071077`*^9,
3.5501071130071077`*^9}, {3.550108278348739*^9, 3.550108278348739*^9}, {
3.552842758197526*^9, 3.552842758197526*^9}, {3.5528438669090776`*^9,
3.5528438669090776`*^9}, {3.552926249271558*^9, 3.552926249895559*^9}, {
3.6144380953064003`*^9, 3.6144380953064003`*^9}, {3.6144624944659204`*^9,
3.6144624944659204`*^9}, {3.614463537205562*^9, 3.614463537205562*^9}, {
3.6738152878953557`*^9, 3.6738152878953557`*^9}}],
Cell[BoxData[
RowBox[{
RowBox[{"\[Integral]",
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"c", "+",
RowBox[{"d", " ", "x"}]}], ")"}], "m"], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"b", " ",
SuperscriptBox["F",
RowBox[{"g", " ",
RowBox[{"(",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], ")"}]}]]}], ")"}], "n"],
RowBox[{"\[DifferentialD]",
RowBox[{"x", " ", "\[LongRightArrow]", " ",
FractionBox[
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"c", "+",
RowBox[{"d", " ", "x"}]}], ")"}],
RowBox[{"m", "+", "1"}]], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"b", " ",
SuperscriptBox["F",
RowBox[{"g", " ",
RowBox[{"(",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], ")"}]}]]}], ")"}], "n"]}],
RowBox[{"d",
RowBox[{"(",
RowBox[{"m", "+", "1"}], ")"}]}]]}]}]}]}], "-",
RowBox[{
FractionBox[
RowBox[{"f", " ", "g", " ", "n", " ",
RowBox[{"Log", "[", "F", "]"}]}],
RowBox[{"d",
RowBox[{"(",
RowBox[{"m", "+", "1"}], ")"}]}]],
RowBox[{"\[Integral]",
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"c", "+",
RowBox[{"d", " ", "x"}]}], ")"}],
RowBox[{"m", "+", "1"}]], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"b", " ",
SuperscriptBox["F",
RowBox[{"g", " ",
RowBox[{"(",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], ")"}]}]]}], ")"}], "n"],
RowBox[{"\[DifferentialD]", "x"}]}]}]}]}]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{{3.4796579723816*^9, 3.4796580261689425`*^9},
3.479661191290163*^9, {3.479686720164157*^9, 3.479686720204214*^9}, {
3.479686831554328*^9, 3.479686834819022*^9}, {3.4940970712485504`*^9,
3.4940971130286083`*^9}, 3.4940971455886545`*^9, 3.4953221152495327`*^9,
3.495322146199576*^9, {3.495322261579737*^9, 3.4953222704097495`*^9},
3.4953325041434045`*^9, 3.4953325401034546`*^9, {3.4953327138936977`*^9,
3.4953327232437115`*^9}, {3.4953341614457245`*^9, 3.4953341867757597`*^9},
3.4953344255060945`*^9, {3.550107259017312*^9, 3.550107263687319*^9}, {
3.5501073156473913`*^9, 3.550107376467477*^9}, {3.552842341676943*^9,
3.552842343686946*^9}, {3.552842758827527*^9, 3.5528427609175296`*^9}, {
3.552842976237831*^9, 3.552842977737833*^9}, 3.552843419398452*^9, {
3.552843574568669*^9, 3.5528435753786697`*^9}, {3.5528448701004825`*^9,